'Declaration<ConditionalAttribute("DEBUG")> Public Overloads Shared Sub LogDebug( _ ByVal eventId As EventId, _ ByVal exception As Exception, _ ByVal message As String, _ ByVal ParamArray args() As Object _ )
'UsageDim eventId As EventId Dim exception As Exception Dim message As String Dim args() As Object Utils.LogDebug(eventId, exception, message, args)
[Conditional("DEBUG")] public static void LogDebug( EventId eventId, Exception exception, string message, params object[] args )
[Conditional("DEBUG")] public: static void LogDebug( EventId eventId, Exception^ exception, String^ message, ... array<Object^>^ args )
Parameters
- eventId
 - The event id associated with the log.
 - exception
 - The exception to log.
 - message
 - Format string of the log message in message template format. Example: 
"User {User} logged in from {Address}" - args
 - An object array that contains zero or more objects to format.